home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / arcanecastle.swf / scripts / DefineButton2_452 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2007-03-12  |  191 b   |  13 lines

  1. on(release){
  2.    if(music == true)
  3.    {
  4.       music = false;
  5.       stopAllSounds();
  6.    }
  7.    else if(music == false)
  8.    {
  9.       music = true;
  10.       playSound("mainSong",-1);
  11.    }
  12. }
  13.